1b4dd240ab8e91d6b773bee2befbc6828b275c23,src/main/java/com/jpaulmorrison/graphics/DrawFBP.java,DrawFBP,createAndShowGUI,#,290
Before Change
// frame = new JFrame("DrawFBP Diagram Generator");
frame.setUndecorated(false); // can't change size of JFrame title,
// though!
frame.setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
applyOrientation(frame);
After Change
// frame = new JFrame("DrawFBP Diagram Generator");
frame.setUndecorated(false); // can't change size of JFrame title,
// though!
defaultCursor = Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR);
frame.setCursor(defaultCursor);
applyOrientation(frame);